From: Juanma Barranquero Date: Sun, 9 May 2004 01:28:34 +0000 (+0000) Subject: (help-highlight-arguments): Fix braino. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~22619 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c495f4411a1ef7e5cc1ccdecb15157add0880262;p=emacs.git (help-highlight-arguments): Fix braino. --- diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 51850288b70..724cfb3b504 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -271,9 +271,9 @@ KIND should be `var' for a variable or `subr' for a subroutine." (search-backward "(") (goto-char (scan-sexps (point) 1))))) ;; Highlight aguments in the USAGE string - (setq usage (help-do-arg-highlight (buffer-string) args)))) - ;; Highlight arguments in the DOC string - (setq doc (and doc (help-do-arg-highlight doc args))) + (setq usage (help-do-arg-highlight (buffer-string) args)) + ;; Highlight arguments in the DOC string + (setq doc (and doc (help-do-arg-highlight doc args))))) ;; Return value is like the one from help-split-fundoc, but highlighted (cons usage doc)))